- MallocHook_DeleteHook
alias MallocHook_DeleteHook = void function(const(void)* ptr)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- MallocHook_MmapHook
alias MallocHook_MmapHook = void function(const(void)* result, const(void)* start, size_t size, int protection, int flags, int fd, int offset)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- MallocHook_MmapReplacement
alias MallocHook_MmapReplacement = int function(const(void)* start, size_t size, int protection, int flags, int fd, int offset, void** result)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- MallocHook_MremapHook
alias MallocHook_MremapHook = void function(const(void)* result, const(void)* old_addr, size_t old_size, size_t new_size, int flags, const(void)* new_addr)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- MallocHook_MunmapHook
alias MallocHook_MunmapHook = void function(const(void)* ptr, size_t size)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- MallocHook_MunmapReplacement
alias MallocHook_MunmapReplacement = int function(const(void)* ptr, size_t size, int* result)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- MallocHook_NewHook
alias MallocHook_NewHook = void function(const(void)* ptr, size_t size)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- MallocHook_PreMmapHook
alias MallocHook_PreMmapHook = void function(const(void)* start, size_t size, int protection, int flags, int fd, int offset)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- MallocHook_PreSbrkHook
alias MallocHook_PreSbrkHook = void function(ptrdiff_t increment)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- MallocHook_SbrkHook
alias MallocHook_SbrkHook = void function(const(void)* result, ptrdiff_t increment)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- MallocHook_AddDeleteHook
int MallocHook_AddDeleteHook(MallocHook_DeleteHook hook)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- MallocHook_AddMmapHook
int MallocHook_AddMmapHook(MallocHook_MmapHook hook)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- MallocHook_AddMremapHook
int MallocHook_AddMremapHook(MallocHook_MremapHook hook)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- MallocHook_AddMunmapHook
int MallocHook_AddMunmapHook(MallocHook_MunmapHook hook)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- MallocHook_AddNewHook
int MallocHook_AddNewHook(MallocHook_NewHook hook)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- MallocHook_AddPreMmapHook
int MallocHook_AddPreMmapHook(MallocHook_PreMmapHook hook)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- MallocHook_AddPreSbrkHook
int MallocHook_AddPreSbrkHook(MallocHook_PreSbrkHook hook)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- MallocHook_AddSbrkHook
int MallocHook_AddSbrkHook(MallocHook_SbrkHook hook)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- MallocHook_GetCallerStackTrace
int MallocHook_GetCallerStackTrace(void** result, int max_depth, int skip_count)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- MallocHook_RemoveDeleteHook
int MallocHook_RemoveDeleteHook(MallocHook_DeleteHook hook)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- MallocHook_RemoveMmapHook
int MallocHook_RemoveMmapHook(MallocHook_MmapHook hook)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- MallocHook_RemoveMmapReplacement
int MallocHook_RemoveMmapReplacement(MallocHook_MmapReplacement hook)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- MallocHook_RemoveMremapHook
int MallocHook_RemoveMremapHook(MallocHook_MremapHook hook)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- MallocHook_RemoveMunmapHook
int MallocHook_RemoveMunmapHook(MallocHook_MunmapHook hook)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- MallocHook_RemoveMunmapReplacement
int MallocHook_RemoveMunmapReplacement(MallocHook_MunmapReplacement hook)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- MallocHook_RemoveNewHook
int MallocHook_RemoveNewHook(MallocHook_NewHook hook)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- MallocHook_RemovePreMmapHook
int MallocHook_RemovePreMmapHook(MallocHook_PreMmapHook hook)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- MallocHook_RemovePreSbrkHook
int MallocHook_RemovePreSbrkHook(MallocHook_PreSbrkHook hook)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- MallocHook_RemoveSbrkHook
int MallocHook_RemoveSbrkHook(MallocHook_SbrkHook hook)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- MallocHook_SetDeleteHook
MallocHook_DeleteHook MallocHook_SetDeleteHook(MallocHook_DeleteHook hook)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- MallocHook_SetMmapHook
MallocHook_MmapHook MallocHook_SetMmapHook(MallocHook_MmapHook hook)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- MallocHook_SetMmapReplacement
int MallocHook_SetMmapReplacement(MallocHook_MmapReplacement hook)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- MallocHook_SetMremapHook
MallocHook_MremapHook MallocHook_SetMremapHook(MallocHook_MremapHook hook)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- MallocHook_SetMunmapHook
MallocHook_MunmapHook MallocHook_SetMunmapHook(MallocHook_MunmapHook hook)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- MallocHook_SetMunmapReplacement
int MallocHook_SetMunmapReplacement(MallocHook_MunmapReplacement hook)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- MallocHook_SetNewHook
MallocHook_NewHook MallocHook_SetNewHook(MallocHook_NewHook hook)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- MallocHook_SetPreMmapHook
MallocHook_PreMmapHook MallocHook_SetPreMmapHook(MallocHook_PreMmapHook hook)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- MallocHook_SetPreSbrkHook
MallocHook_PreSbrkHook MallocHook_SetPreSbrkHook(MallocHook_PreSbrkHook hook)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- MallocHook_SetSbrkHook
MallocHook_SbrkHook MallocHook_SetSbrkHook(MallocHook_SbrkHook hook)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.